home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00090_dotaa behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  1.0 KB  |  37 lines

  1. global oldText
  2.  
  3. on mouseEnter me
  4.   puppetSound(3, "over")
  5.   sprite(71).visible = 1
  6.   member("blurb").text = "Ansel Adams is arguably the best-known photographer in history. A dedicated environmental activist, Adams believed passionately in humankindΓÇÖs need to protect the environment and live in harmony with nature. His awe-inspiring photographs, many of them icons of the American West, are available exclusively through Corbis Images."
  7.   sprite(9).visible = 0
  8.   sprite(21).visible = 0
  9.   sprite(22).visible = 0
  10.   sprite(23).visible = 0
  11.   sprite(24).visible = 0
  12.   sprite(25).visible = 1
  13.   sprite(26).visible = 0
  14.   sprite(27).visible = 0
  15.   sprite(28).visible = 0
  16.   sprite(29).visible = 0
  17.   sprite(30).visible = 0
  18.   sprite(31).visible = 0
  19.   sprite(32).visible = 1
  20.   sprite(33).visible = 0
  21.   sprite(34).visible = 0
  22.   sprite(35).visible = 0
  23. end
  24.  
  25. on mouseLeave me
  26.   member("blurb").text = oldText
  27.   sprite(25).visible = 0
  28.   sprite(32).visible = 0
  29. end
  30.  
  31. on mouseUp me
  32.   puppetSound(2, "click")
  33.   oldText = member("blurb").text
  34.   sprite(32).visible = 0
  35.   go("ansel")
  36. end
  37.